home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / SystemCode / globals.tcl < prev    next >
Encoding:
Text File  |  1998-12-16  |  15.2 KB  |  380 lines  |  [TEXT/ALFA]

  1. ## -*-Tcl-*-
  2.  # ###################################################################
  3.  #  Alpha - new Tcl folder configuration
  4.  # 
  5.  #  FILE: "globals.tcl"
  6.  #                                    created: 13/6/94 {9:39:12 pm} 
  7.  #                                last update: 16/12/1998 {1:48:18 am} 
  8.  #  
  9.  # Reorganisation carried out by Vince Darley with much help from Tom 
  10.  # Fetherston, Johan Linde and suggestions from the Alpha-D mailing list.  
  11.  # Alpha is shareware; please register with the author using the register 
  12.  # button in the about box.
  13.  #  
  14.  # ###################################################################
  15.  ##
  16.  
  17. namespace eval flag {}
  18. namespace eval global {}
  19.  
  20. proc alpha::getGlobalPreferences {} {}
  21.  
  22.  
  23. ensureset tclvars {}
  24. ensureset allFlags {}
  25. ensureset allVars {}
  26. set invisibleModeVars(wordWrap) 1
  27.  
  28. proc flag::options {v} {
  29.     global flag::list
  30.     set thelist [set flag::list($v)]
  31.     set litems [lindex $thelist 1]
  32.     switch -- [lindex $thelist 0] {
  33.     "varitem" {
  34.         return [uplevel \#0 "set $litems"]
  35.     }
  36.     "varindex" {
  37.         return [uplevel \#0 "set $litems"]
  38.     }
  39.     "array" {
  40.         global $litems
  41.         return [lsort [array names $litems]]
  42.     }
  43.     }
  44.     return $litems
  45. }
  46.  
  47. catch {newPref linkflag lockStatus 1}
  48. # Automatically scroll horizontal scrollbar to follow insertion.
  49. newPref linkflag autoHScroll 1
  50. # If TRUE, buffers (except untitled buffers) are automatically saved every 'changesLim' changes
  51. newPref linkflag autoSave 0
  52. # To make the cursor blink, click this box||To stop the cursor blinking, click this box
  53. newPref linkflag blinkingCursor 1
  54. # To use a solid rectangular cursor, click this box||To use a thin vertical cursor, click this box.
  55. newPref linkflag blockCursor 0
  56. # To color words according to mode and context, click this box||To display all text more quickly, but in plain black and white, click this box.
  57. newPref linkflag coloring 1
  58. # To enable drag and drop editing using the mouse, click this box||To disable drag and drop editing using the mouse, click this box.
  59. newPref linkflag dragAndDrop 1
  60. # To display a horizontal scrollbar in new windows, click this box||To make maximum use of window space and not use a horizontal scrollbar, click this box.
  61. newPref linkflag horScrollBar 1
  62. # enable clicking on hypertext items
  63. newPref linkflag hyperText 1
  64. # To force the insertion point to move with 'pageBack' and 'pageForward' commands, click this box
  65. # ||To leave the insertion point in place (usually offscreen) after 'pageBack' and 'pageForward' commands, click this box
  66. newPref linkflag moveInsertion 1
  67. # To list all file types (as opposed to just 'TEXT') in open/save dialog boxes, click this box||To display only 'TEXT' files in open/save dialog boxes, click this box.
  68. newPref linkflag openAllFiles 0
  69. # To make the window scroll dynamically while using vertical scrollbars, click this box
  70. # ||To make the window scroll only after releasing the button in a vertical scrollbar, click this box
  71. newPref linkflag powerThumb 1
  72. # Respect projector resources
  73. newPref linkflag projectorAware 1
  74. # tabs, carriage returns, spaces etc are all shown with distinct symbols
  75. newPref linkflag showInvisibles 0
  76. # use a small font for the various pop-up menus (e.g. marks menu)
  77. newPref linkflag smallMenuFont 1
  78. # if set, sorted is the default for function and section menus
  79. newPref linkflag sortedIsDefault
  80. # toggles tear-off menus
  81. newPref linkflag tearoffMenus 1
  82. # Enable use of system temporary memory
  83. newPref linkflag tempMem 1
  84. # used to turn undo on and off. When undo is turned off, all undo info is 
  85. # lost. Useful when doing global replaces, etc
  86. newPref linkflag undoOn 1
  87. # automatically insert carriage-returns when you exceed the 'fillColumn' line
  88. # length
  89. newPref linkflag wordWrap 1
  90. # add a description of each preference to the standard dialogs
  91. newPref flag includeDescriptionsInDialogs 0
  92. # Used by completion routines: if there is a selection and you and
  93. # trying to complete something, should Alpha ask before deleting the
  94. # selection.
  95. newPref flag askDeleteSelection 0
  96. # make a backup when we save a file
  97. newPref flag backup 0
  98. # force newly opened windows onto the main screen
  99. newPref flag forceMainScreen 1
  100. # Iconify windows when you switch to another application
  101. newPref flag iconifyOnSwitch 0
  102. newPref flag infoWindowsDirty 0
  103. # insert/remove spaces to ensure a single space between words.
  104. newPref flag intelCutPaste 1
  105. newPref flag sortFuncsMenu 1
  106. # To place two spaces after the '.' at the end of each sentence when
  107. # filling blocks of text, click this box|| To place only a single space
  108. # after the '.' at the end of each sentence when
  109. # filling blocks of text, click this box
  110. newPref flag doubleSpaces 1
  111. # To print a header at the top of each printed page, click this box||
  112. # To print only the contents of the window, without any identifying header,
  113. # click this box.
  114. newPref flag printHeader 1
  115. # To include a file's full path in the printed header, click this box
  116. # ||To place just a file's name in the printed header, click this box
  117. newPref flag printHeaderFullPath 0
  118. # To include the current time in printed headers, click this box
  119. # ||To remove the current time from printed headers, click this box
  120. newPref flag printHeaderTime 1
  121. # To choose from a listbox of possible completions if you try to 
  122. # complete a command for which no unique
  123. # suffix exists, click this box.||To abort the completion if no
  124. # unique suffix exists, click this box.
  125. newPref flag listPickIfMultCmps 1
  126. # if we have a choice between, say \left, \leftRight, \leftMore,
  127. # then we don't get stuck on '\left' with this option.
  128. newPref flag listPickIfNonUniqueStuckCmp 1
  129. # To clear old marks automatically when you select 'Mark File', 
  130. # click this box.|| To check before clearing old marks, click this box.
  131. newPref flag quietlyClearMarks 1
  132. # folder in which to store backups
  133. newPref var backupFolder ""
  134. # extension to add to file when backing-up
  135. newPref var backupExtension "~"
  136. # don't make a backup if we made one this many hours ago
  137. newPref var backupAgeRequirementInHours 0.0
  138. # When creating files for uploading through the Ftp menu, save them
  139. # with this eol format.  Note that some ftp clients may translate
  140. # eols for you as they up/download.
  141. newPref var createFtpType unix global "" "mac unix ibm"
  142. # Number of pixels from left edge of window to start of text
  143. newPref var horMargin 4
  144. # visually indent code by this many characters to indicate its structure
  145. newPref var indentationAmount 4
  146. # if we have fewer than this many items in the opt-titlebar-menu,
  147. # add the contents of the current directory
  148. newPref var minItemsInTitlePopup 5
  149. # The tiling items in the 'Arrange' menu will relocate this many
  150. # windows, starting with the front window and moving back.
  151. newPref var numWinsToTile 2
  152. newPref var tileHeight [expr {$screenHeight - 60}]
  153. newPref var tileLeft 2
  154. newPref var tileMargin 22
  155. newPref var tileProportion .60
  156. newPref var tileTop 40
  157. newPref var tileWidth [expr {$screenWidth - 10}]
  158. newPref linkvariable defLeft 2
  159. newPref linkvariable defTop 40
  160. newPref linkvariable defHeight $tileHeight
  161. newPref linkvariable defWidth [expr {$tileWidth > 510 ? 510 : $tileWidth}]
  162. # the fraction of the screen the small batch-search, or diff-style 
  163. # windows use up
  164. newPref var batchListWindowFraction 0.25 global win::SetProportions
  165.  
  166. # which type of keyboard do you have
  167. newPref variable keyboard US global keys::keyboardChanged keyboards array
  168. # dictates the spelling Alpha uses for words like 'Colour/Color'
  169. newPref var spelling 0 global "" "American British" index
  170. # Useful for debugging some complex startup problems; you can choose
  171. # between logging all errors for later viewing, or displaying them
  172. # immediately
  173. newPref var reportErrors 1 global "" \
  174.   [list "Log startup errors" "Report errors immediately"] index
  175. # re-read internet preferences from IC each startup
  176. newPref flag synchroniseWithInternetConfig 0
  177. # The font to use for printing documents
  178. newPref linkvariable printerFont "" global "" "system monaco courier geneva helvetica profont times {new york}"
  179. newPref linkvariable printerFontSize "" global "" "7 9 10 12 14 18"
  180. # Default font to use for new windows
  181. newPref linkvariable defaultFont "monaco" global "" "system monaco courier geneva helvetica profont times {new york} programmer"
  182. # Default font size to use for new windows
  183. newPref linkvariable fontSize 9 global "" "7 9 10 12 14 18"
  184. # The amount of information to store in the resource fork of saved text
  185. # files.  This can include font, tab, selection,... information.
  186. newPref linkvariable savedState "" global "" "none think mpw"
  187. # default size for a tab character for new windows
  188. newPref linkvariable tabSize 8
  189. # Reg expr used for automatic word wrapping
  190. newPref linkvariable wrapBreak {[\w_]+}
  191. # Reg expr used for automatic word wrapping
  192. newPref linkvariable wrapBreakPreface {([^\w_])}
  193. # Auto-wrap if the user types further than this column
  194. newPref linkvariable wrapHigh ""
  195. # Auto-un-wrap if the user deletes chars so a line is shorter than this
  196. newPref linkvariable wrapLow ""
  197. # The maximum number of changes before auto-saving occurs (if set)
  198. newPref linkvariable changesLim ""
  199. # When wrapping text (see 'Word Wrap' preference), wrapping occurs
  200. # for any text beyond this column position.  Used by all 'Fill' routines
  201. newPref linkvariable fillColumn 75
  202. # Set to the regular expression that ALPHA uses to find function declarations.
  203. newPref linkvariable funcExpr {^[^ \t\(#\r/@].*\(.*\)$}
  204. # The parenthesised regexp block to use for the func name
  205. newPref linkvariable funcPar 1
  206. # Number of blanks left at beginning of lines by 'fill' routines.
  207. newPref linkvariable leftFillColumn 0
  208. # Alpha asks the user if wrapping should be done whenever the user opens 
  209. # files that have lines longer than 'paraColumn' characters
  210. newPref linkvariable paraColumn 180
  211. # Column to use for sort routine.
  212. newPref linkvariable sortColumn 0
  213. # File to use for Tag searches.
  214. newPref linkio-file tagFile [file join $HOME cTAGS]
  215. # Margin size for printing
  216. newPref linkvariable leftMargin ""
  217. # Margin size for printing
  218. newPref linkvariable bottomMargin ""
  219. # Margin size for printing
  220. newPref linkvariable topMargin ""
  221. # Regular expression used to defines words for all internal operations.
  222. newPref linkvariable wordBreak {\w+}
  223. # Prepended to 'wordBreak' when looking backwards for a word.
  224. newPref linkvariable wordBreakPreface {(\W)}
  225. # Flags that won't appear in the menu.
  226. linkVar numLock
  227. # Usual place you use for downloading updates to Alpha and its packages.
  228. newPref var defaultAlphaDownloadSite "" global "" remote::site array
  229. # bug in alpha-IC interaction
  230. if {![catch "icGetPref DownloadFolder" res] && [file exists $res]} {
  231.     # Default download location for files from the internet
  232.     newPref var downloadFolder $res
  233. } else {
  234.     newPref var downloadFolder $HOME
  235. }
  236. # if first item = code, then indent relative to code by given value of second arg
  237. # if first item = fixed, then force indentation to given level
  238. set indentationTypes [list "code 0" "code 4" "fixed 0"]
  239.  
  240. lunion flagPrefs(Backups)         backup undoOn autoSave
  241. lunion varPrefs(Backups)         backupFolder backupExtension changesLim \
  242.   backupAgeRequirementInHours
  243. lunion flagPrefs(Gui)             blinkingCursor blockCursor coloring \
  244.   dragAndDrop iconifyOnSwitch intelCutPaste lockStatus showInvisibles \
  245.   smallMenuFont sortFuncsMenu tearoffMenus doubleSpaces hyperText
  246. lunion varPrefs(Gui)              defaultFont fontSize tabSize sortColumn
  247. lunion flagPrefs(Printer)         printHeader printHeaderFullPath printHeaderTime
  248. lunion varPrefs(Printer)         bottomMargin printerFont printerFontSize \
  249.   topMargin leftMargin
  250. lunion flagPrefs(Tags)         
  251. lunion varPrefs(Tags)             funcPar tagFile
  252. lunion flagPrefs(Window)         autoHScroll forceMainScreen horScrollBar \
  253.   moveInsertion powerThumb sortedIsDefault
  254. lunion varPrefs(Window)         defHeight defLeft defTop defWidth \
  255.   minItemsInTitlePopup savedState
  256. lunion flagPrefs(Tiling)         
  257. lunion varPrefs(Tiling)         numWinsToTile batchListWindowFraction horMargin \
  258.   tileHeight tileProportion tileLeft tileMargin tileTop tileWidth 
  259. lunion flagPrefs(Wrapping)     
  260. lunion varPrefs(Wrapping)         fillColumn leftFillColumn paraColumn wrapLow \
  261.   wrapHigh
  262. lunion flagPrefs(Electrics)     listPickIfMultCmps listPickIfNonUniqueStuckCmp \
  263.   askDeleteSelection
  264. lunion varPrefs(Electrics)     indentationAmount elecStopMarker
  265. lunion flagPrefs(Miscellaneous) 
  266. lunion flagPrefs(Helpers) 
  267. lunion varPrefs(Miscellaneous) 
  268. lunion varPrefs(Helpers) 
  269. lunion flagPrefs(WWW) synchroniseWithInternetConfig
  270. lunion varPrefs(WWW) defaultAlphaDownloadSite createFtpType downloadFolder \
  271.   browserSig ftpSig httpDownloadSig
  272. lunion flagPrefs(International)
  273. lunion varPrefs(International) keyboard spelling 
  274. lunion flagPrefs(Packages)
  275. lunion varPrefs(Packages) reportErrors
  276.  
  277. proc alpha::addToPreferencePage {page args} {
  278.     global varPrefs flagPrefs allFlags
  279.     set vars [lremove -l $args $allFlags]
  280.     set flags [lremove -l $args $vars]
  281.     eval lunion varPrefs($page) $vars
  282.     eval lunion flagPrefs($page) $flags
  283. }
  284.  
  285. namespace eval indent {}
  286.  
  287. set indent::amounts [list "nothing" "half-tab" "tab"]
  288.  
  289. proc indent::setup {args} {
  290.     global indent_amounts indentationAmount
  291.     set indent_amounts(0) 0
  292.     set indent_amounts(1) [expr {$indentationAmount/2}]
  293.     set indent_amounts(2) $indentationAmount
  294.     set indent_amounts(-1) [expr {-$indentationAmount/2}]
  295.     set indent_amounts(-2) [expr {-$indentationAmount}]
  296. }
  297. indent::setup
  298. trace variable indentationAmount w indent::setup
  299.  
  300. proc getFileSig {f} {
  301.     getFileInfo $f arr
  302.     if {[info exists arr(creator)]} {
  303.     return $arr(creator)
  304.     } else {
  305.     return ""
  306.     }
  307. }
  308.  
  309. proc getFileType {f} {
  310.     getFileInfo $f arr
  311.     if {[info exists arr(type)]} {
  312.     return $arr(type)
  313.     } else {
  314.     return "TEXT"
  315.     }
  316. }
  317.  
  318. # get defaults from internet config
  319. if {$synchroniseWithInternetConfig} {
  320.     catch {set browserSig [getFileSig [icGetPref -t 1 Helper•http]]}
  321.     catch {set ftpSig [getFileSig [icGetPref -t 1 Helper•ftp]]}
  322. } else {
  323.     catch {ensureset browserSig [getFileSig [icGetPref -t 1 Helper•http]]}
  324.     catch {ensureset ftpSig [getFileSig [icGetPref -t 1 Helper•ftp]]}
  325. }
  326.  
  327. # the application signature of your internet browser
  328. newPref v browserSig MOSS
  329. # the application signature of your ftp client
  330. newPref v ftpSig Arch
  331. # the application signature of your internet browser to use for downloading
  332. # only (rather than viewing)
  333. newPref v httpDownloadSig $browserSig
  334.  
  335. namespace eval win {}
  336.  
  337. proc win::SetProportions {} {
  338.     global tileHeight tileWidth tileTop tileLeft tileHeight \
  339.       errorHeight errorDisp tileMargin batchListWindowFraction
  340.     set errorHeight [expr {int ($batchListWindowFraction * ($tileHeight - $tileMargin))}]
  341.     set errorDisp [expr {int ((1- $batchListWindowFraction) * ($tileHeight - $tileMargin))}]
  342. }
  343.  
  344. proc wordWrapProc {val} { 
  345.     global mode wordWrap modifiedArrayElements 
  346.     global ${mode}modeVars
  347.     set wordWrap $val
  348.     set ${mode}modeVars(wordWrap) $val
  349.     lappend modifiedArrayElements [list wordWrap ${mode}modeVars]
  350. }
  351.  
  352.  
  353. proc toggleNumLock {} {
  354.     global numLock modifiedVars
  355.     
  356.     set numLock [expr {-1 * ($numLock - 1)}]
  357.     lappend modifiedVars numLock
  358. }
  359.  
  360. #============================================================================
  361. # declare these as modeVars in advance.  I'm not sure it is necessary (Vince)
  362. lunion modeVars funcExpr wrapBreakPreface wrapBreak wordBreakPreface wordBreak
  363.  
  364. # 'mode' is nothing when we start up.
  365. set mode             {}
  366. set lastMode            0
  367. set reverting             {}
  368.  
  369. # For quithook
  370. set modifiedVars        {}
  371. set modifiedArrVars     {}
  372. set modifiedModeVars    {}
  373. set modifiedArrayElements {}
  374.  
  375. namespace eval win {}
  376. ensureset win::Active ""
  377.  
  378.  
  379.  
  380.